home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / cattest.arc / CAT01.LST < prev    next >
File List  |  1991-07-01  |  3KB  |  52 lines

  1.  A. Overview
  2.     1. To create a single question:
  3.        a) run the program MQxx and (W)rite a file (call it QUES.IN1).
  4.        b) copy PROTOTYP.PAS to QUES.PAS.
  5.        c) Load Turbo, and using F3, load QUES.PAS.
  6.           1) Change every occurrence of PROTO to QUES
  7.           2) Compile the program (Alt-F9). If there are PASCAL errors,
  8.              correct them.
  9.           3) Run the program, and check that it is operating properly as
  10.              a single question.
  11.     2. Once you have created and tested all the questions on the
  12.        forthcoming test, you should have a set of n .IN1 files with
  13.        different names.
  14.     3. To create a complete test, run MTxx. This will compile
  15.        PROCTORn.PAS, where n is the number of questions (see part 2
  16.        above). MTxx will take the "include" files you created with
  17.        MQxx and actually create the Q1OVR.PAS, Q2OVR.PAS, etc.
  18.     4. Using a clean disk in the A: drive,
  19.        a) copy PROCTORn.EXE and PROCTORn.OVR to the A: drive,
  20.        b) and run INITGRAD to initialize each GRADE.BK$ file (one per
  21.           student disk) with a password.
  22.  B. To look at the results of examinations.
  23.     1. As the student works, his(her) responses are stored in a
  24.        disk file called Q1.$$$ for question Q1, (Qn.$$$ for
  25.        question 'n'). At the end of the examination, each of these
  26.        files is hidden in a uuencoded form. Their name, after
  27.        uuencoding, is Qn.UUE (or Qn.UUF, Qn.UUG, etc. depending on
  28.        how many times the student tried the question). Use UUDECODE
  29.        (or UUDEC) to decode these files back into a useable form.
  30.        The intention of these files is to show you how the student
  31.        did the examination. If you are debugging the question, this
  32.        file presents a record of what student answers looked like.
  33.        Also, if the student commented on the question, that
  34.        comment(s) is contained in this file. If you are going to
  35.        expand the repertoire of error responses for this question
  36.        (for subsequent use), you may wish to ask the student why
  37.        (s)he entered each incorrect response, i.e., what was the
  38.        reasoning process. This will allow you to provide
  39.        appropriate error responses the next time this question is
  40.        used.
  41.  
  42.     2. As the student works, his(her) gradebook is maintained in a
  43.        temporary file, which, at the end of the examination, is
  44.        uuencoded to replace the original GRADE.BK$ which you stored
  45.        on this student's disk. As above, use UUDECODE (or UUDEC) to
  46.        decode GRADE.BK$. Uudecoding it will create a file called
  47.        GRADEB.OOK, and this file can be typed, printed, etc.. It
  48.        tells you if the student got the questions right (or quit),
  49.        and how long the student spent on each task. This file is a
  50.        true grade book file, which may be manipulated into a class
  51.        register, etc..
  52.